home *** CD-ROM | disk | FTP | other *** search
/ EDUCORP 8 / Educorp2Compilation.sit / educorp2 / Demos / Aztec Source Level Debugger / demo / drawbar.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-06-14  |  269 b   |  19 lines

  1. #include "barchart.h"
  2.  
  3. drawbar(xyb, x, width, height, pat)
  4. struct XYBase *xyb;
  5. int x, width, height;
  6. Pattern *pat;
  7. {
  8.     Rect r;
  9.  
  10.     r.left = x + xyb->xaxis;
  11.     r.right = r.left + width - 1;
  12.  
  13.     r.bottom = xyb->yaxis - 1;
  14.     r.top = r.bottom - height + 1;
  15.  
  16.     FillRect(&r, pat);
  17. }
  18.  
  19.